home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / usenet / sources / volume91 / libraris / sregexp1 / part01 / OVERVIEW < prev    next >
Text File  |  1992-04-20  |  792b  |  19 lines

  1.  
  2. 'sregexp.library' is a run time library of routines for doing wildcard
  3. pattern matching and wildcard path matching.  It accepts a slight extension
  4. of the AmigaDOS wildcard syntax, including a not operator, and character
  5. sets. It has routines to test if a string matches a wildcard expression,
  6. and for scanning through all matches to a wildcarded AmigaDOS path.  There
  7. are two nifty features to the path matching routines: '.../' means
  8. recursively scan all subdirectories, and may come anywhere in the path; and
  9. wildcards are allowed in the volume node part of the path! (DH?: would
  10. match all your hard drive partitions.)
  11.  
  12.     new from version 9.1 -> 11.1
  13.  
  14.     Fixed a couple of bugs.
  15.  
  16.     A null string is now equivalent to a '%' in all cases, so
  17.     (cat|dog|) is the same as (cat|dog|%).
  18.  
  19.